home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 June / CHIP Turkiye Haziran 1997.iso / oyun / wr3d / stunt_1 / xst1ua01.x < prev    next >
Text File  |  1997-02-18  |  11KB  |  525 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  69;
  136.  864.000000;569.796814;3969.000000;,
  137.  888.000000;587.346741;3969.000000;,
  138.  912.000000;606.696777;3969.000000;,
  139.  936.000000;624.696777;3969.000000;,
  140.  960.000000;637.896790;3969.000000;,
  141.  984.000000;643.746765;3969.000000;,
  142.  1008.000000;638.046753;3969.000000;,
  143.  864.000000;571.450378;3996.000000;,
  144.  864.000000;577.000427;4050.000000;,
  145.  864.000000;580.750427;4077.000000;,
  146.  864.000000;585.566101;4104.000000;,
  147.  864.000000;591.400391;4131.000000;,
  148.  960.000000;645.850403;4131.000000;,
  149.  1008.000000;646.300415;4131.000000;,
  150.  864.000000;598.300354;4158.000000;,
  151.  984.000000;654.550415;4158.000000;,
  152.  1008.000000;649.150391;4158.000000;,
  153.  864.000000;606.550354;4185.000000;,
  154.  1008.000000;653.350403;4185.000000;,
  155.  864.000000;624.400391;4239.000000;,
  156.  864.000000;632.350403;4266.000000;,
  157.  864.000000;638.800476;4293.000000;,
  158.  984.000000;676.900452;4293.000000;,
  159.  1008.000000;673.750427;4293.000000;,
  160.  864.000000;643.450012;4320.000000;,
  161.  912.000000;663.850037;4320.000000;,
  162.  936.000000;672.100037;4320.000000;,
  163.  960.000000;677.350037;4320.000000;,
  164.  984.000000;679.600037;4320.000000;,
  165.  1008.000000;677.950012;4320.000000;,
  166.  432.000000;642.396790;3969.000000;,
  167.  456.000000;643.746765;3969.000000;,
  168.  480.000000;635.196777;3969.000000;,
  169.  504.000000;620.196777;3969.000000;,
  170.  552.000000;583.746765;3969.000000;,
  171.  576.000000;568.896790;3969.000000;,
  172.  432.000000;651.550415;3996.000000;,
  173.  576.000000;570.850403;3996.000000;,
  174.  432.000000;658.750366;4023.000000;,
  175.  456.000000;655.750366;4023.000000;,
  176.  576.000000;573.550354;4023.000000;,
  177.  432.000000;661.000366;4050.000000;,
  178.  432.000000;659.500366;4077.000000;,
  179.  576.000000;580.450378;4077.000000;,
  180.  432.000000;656.800415;4104.000000;,
  181.  456.000000;658.450378;4104.000000;,
  182.  576.000000;584.666077;4104.000000;,
  183.  432.000000;655.450378;4131.000000;,
  184.  576.000000;589.600403;4131.000000;,
  185.  432.000000;656.500366;4158.000000;,
  186.  576.000000;595.900391;4158.000000;,
  187.  432.000000;659.950378;4185.000000;,
  188.  456.000000;662.950378;4185.000000;,
  189.  480.000000;656.650391;4185.000000;,
  190.  576.000000;603.850403;4185.000000;,
  191.  432.000000;670.150391;4239.000000;,
  192.  576.000000;622.000366;4239.000000;,
  193.  432.000000;674.350403;4266.000000;,
  194.  576.000000;630.400391;4266.000000;,
  195.  432.000000;676.900452;4293.000000;,
  196.  456.000000;679.450439;4293.000000;,
  197.  576.000000;637.450439;4293.000000;,
  198.  432.000000;677.950012;4320.000000;,
  199.  456.000000;680.950012;4320.000000;,
  200.  480.000000;678.549988;4320.000000;,
  201.  504.000000;671.650024;4320.000000;,
  202.  528.000000;661.750000;4320.000000;,
  203.  552.000000;651.250000;4320.000000;,
  204.  576.000000;642.400024;4320.000000;;
  205.  
  206.  73;
  207.  3;0,7,1;,
  208.  3;7,8,1;,
  209.  3;2,12,3;,
  210.  3;2,1,12;,
  211.  3;3,12,4;,
  212.  3;4,15,5;,
  213.  3;4,12,15;,
  214.  3;5,15,6;,
  215.  3;1,8,12;,
  216.  3;8,9,12;,
  217.  3;15,13,6;,
  218.  3;9,10,12;,
  219.  3;15,16,13;,
  220.  3;10,11,12;,
  221.  3;15,18,16;,
  222.  3;14,12,11;,
  223.  3;14,17,12;,
  224.  3;12,22,15;,
  225.  3;17,19,12;,
  226.  3;15,22,18;,
  227.  3;20,12,19;,
  228.  3;20,21,12;,
  229.  3;22,23,18;,
  230.  3;21,24,12;,
  231.  3;12,24,25;,
  232.  3;12,25,26;,
  233.  3;12,27,22;,
  234.  3;12,26,27;,
  235.  3;22,27,28;,
  236.  3;22,29,23;,
  237.  3;22,28,29;,
  238.  3;30,36,31;,
  239.  3;34,37,35;,
  240.  3;36,39,31;,
  241.  3;36,38,39;,
  242.  3;31,39,32;,
  243.  3;32,39,33;,
  244.  3;34,40,37;,
  245.  3;38,41,39;,
  246.  3;41,45,39;,
  247.  3;41,42,45;,
  248.  3;34,43,40;,
  249.  3;34,33,43;,
  250.  3;42,44,45;,
  251.  3;33,46,43;,
  252.  3;44,47,45;,
  253.  3;33,48,46;,
  254.  3;33,39,48;,
  255.  3;47,52,45;,
  256.  3;47,49,52;,
  257.  3;45,53,39;,
  258.  3;45,52,53;,
  259.  3;39,50,48;,
  260.  3;49,51,52;,
  261.  3;39,53,50;,
  262.  3;50,53,54;,
  263.  3;51,55,52;,
  264.  3;53,56,54;,
  265.  3;55,57,52;,
  266.  3;56,53,58;,
  267.  3;57,60,52;,
  268.  3;57,59,60;,
  269.  3;52,64,53;,
  270.  3;52,60,64;,
  271.  3;53,64,65;,
  272.  3;53,61,58;,
  273.  3;59,63,60;,
  274.  3;59,62,63;,
  275.  3;60,63,64;,
  276.  3;65,66,53;,
  277.  3;53,66,67;,
  278.  3;53,68,61;,
  279.  3;53,67,68;;
  280.  
  281.  MeshMaterialList {
  282.   1;
  283.   1;
  284.   0;;
  285.   Material {
  286.    1.000000;1.000000;1.000000;1.000000;;
  287.    15.000000;
  288.    1.000000;1.000000;1.000000;;
  289.    0.000000;0.000000;0.000000;;
  290.    TextureFilename {
  291.     "scmt1052.tga";
  292.    }
  293.   }
  294.  }
  295.  MeshNormals {
  296.   79;
  297.   -0.589548;0.806223;-0.049376;,
  298.   -0.595423;0.802020;-0.047280;,
  299.   -0.613900;0.789334;-0.008877;,
  300.   -0.542090;0.839808;-0.029351;,
  301.   -0.339269;0.939426;-0.048747;,
  302.   -0.002949;0.998366;-0.057069;,
  303.   0.252941;0.966070;-0.052239;,
  304.   -0.600929;0.796645;-0.065131;,
  305.   -0.558492;0.825108;-0.085342;,
  306.   -0.502750;0.853751;-0.135467;,
  307.   -0.489716;0.855406;-0.168696;,
  308.   -0.483299;0.852096;-0.200884;,
  309.   -0.425909;0.892137;-0.150641;,
  310.   0.246885;0.966080;-0.075738;,
  311.   -0.483831;0.842670;-0.236250;,
  312.   0.060040;0.993155;-0.100191;,
  313.   0.217756;0.967800;-0.126277;,
  314.   -0.488991;0.831274;-0.264333;,
  315.   0.190857;0.967722;-0.164582;,
  316.   -0.480993;0.836868;-0.261338;,
  317.   -0.445430;0.865209;-0.230229;,
  318.   -0.379658;0.906330;-0.185541;,
  319.   0.017828;0.988982;-0.146961;,
  320.   0.128279;0.977358;-0.168271;,
  321.   -0.361227;0.916507;-0.171840;,
  322.   -0.352632;0.918857;-0.177066;,
  323.   -0.266067;0.949611;-0.165675;,
  324.   -0.156265;0.977617;-0.140877;,
  325.   -0.012356;0.994963;-0.099481;,
  326.   0.098514;0.987134;-0.125941;,
  327.   -0.053195;0.945713;-0.320619;,
  328.   0.009983;0.962964;-0.269446;,
  329.   0.328466;0.922011;-0.204953;,
  330.   0.431463;0.890070;-0.147019;,
  331.   0.583526;0.804971;-0.107327;,
  332.   0.562078;0.822222;-0.089554;,
  333.   0.525178;0.848774;-0.061414;,
  334.   0.046773;0.963044;-0.265250;,
  335.   0.534151;0.842275;-0.072494;,
  336.   0.122234;0.977875;-0.169763;,
  337.   0.124337;0.981202;-0.147590;,
  338.   0.454446;0.883602;-0.112808;,
  339.   0.560190;0.823064;-0.093560;,
  340.   0.151034;0.986847;-0.057634;,
  341.   -0.018718;0.998285;0.055460;,
  342.   -0.018718;0.998285;0.055460;,
  343.   -0.068248;0.992717;0.099270;,
  344.   0.597360;0.794169;-0.111613;,
  345.   -0.068396;0.994868;0.074569;,
  346.   0.178248;0.983439;-0.032781;,
  347.   -0.018718;0.998285;0.055460;,
  348.   -0.107304;0.993723;0.031636;,
  349.   0.219012;0.974764;-0.043231;,
  350.   0.624450;0.770110;-0.130355;,
  351.   -0.157790;0.987370;-0.014250;,
  352.   0.589871;0.796355;-0.133681;,
  353.   -0.171569;0.981752;-0.082024;,
  354.   0.528532;0.831316;-0.171951;,
  355.   -0.122534;0.980275;-0.155071;,
  356.   -0.123407;0.985288;-0.118233;,
  357.   0.236005;0.964436;-0.119013;,
  358.   0.370728;0.913537;-0.167362;,
  359.   0.464530;0.844600;-0.266201;,
  360.   -0.085697;0.981883;-0.169005;,
  361.   0.458949;0.845320;-0.273496;,
  362.   -0.064940;0.989020;-0.132749;,
  363.   0.443450;0.861799;-0.246283;,
  364.   -0.111577;0.991794;-0.062417;,
  365.   -0.083709;0.991462;-0.099977;,
  366.   0.151402;0.983217;-0.101789;,
  367.   0.401506;0.894215;-0.197923;,
  368.   -0.123943;0.991540;-0.038544;,
  369.   -0.114727;0.992292;-0.046848;,
  370.   0.099353;0.993521;-0.055180;,
  371.   0.207149;0.969840;-0.128450;,
  372.   0.324955;0.931871;-0.161309;,
  373.   0.385314;0.906755;-0.171253;,
  374.   0.368684;0.915681;-0.160001;,
  375.   0.356742;0.921007;-0.156463;;
  376.  
  377.   73;
  378.   3;0,7,1;,
  379.   3;7,8,1;,
  380.   3;2,12,3;,
  381.   3;2,1,12;,
  382.   3;3,12,4;,
  383.   3;4,15,5;,
  384.   3;4,12,15;,
  385.   3;5,15,6;,
  386.   3;1,8,12;,
  387.   3;8,9,12;,
  388.   3;15,13,6;,
  389.   3;9,10,12;,
  390.   3;15,16,13;,
  391.   3;10,11,12;,
  392.   3;15,18,16;,
  393.   3;14,12,11;,
  394.   3;14,17,12;,
  395.   3;12,22,15;,
  396.   3;17,19,12;,
  397.   3;15,22,18;,
  398.   3;20,12,19;,
  399.   3;20,21,12;,
  400.   3;22,23,18;,
  401.   3;21,24,12;,
  402.   3;12,24,25;,
  403.   3;12,25,26;,
  404.   3;12,27,22;,
  405.   3;12,26,27;,
  406.   3;22,27,28;,
  407.   3;22,29,23;,
  408.   3;22,28,29;,
  409.   3;30,37,31;,
  410.   3;35,38,36;,
  411.   3;37,40,31;,
  412.   3;37,39,40;,
  413.   3;32,41,33;,
  414.   3;33,41,34;,
  415.   3;35,42,38;,
  416.   3;39,43,40;,
  417.   3;43,49,40;,
  418.   3;44,45,50;,
  419.   3;35,47,42;,
  420.   3;35,34,47;,
  421.   3;46,48,51;,
  422.   3;34,53,47;,
  423.   3;48,54,51;,
  424.   3;34,55,53;,
  425.   3;34,41,55;,
  426.   3;54,59,51;,
  427.   3;54,56,59;,
  428.   3;52,61,41;,
  429.   3;52,60,61;,
  430.   3;41,57,55;,
  431.   3;56,58,59;,
  432.   3;41,61,57;,
  433.   3;57,61,62;,
  434.   3;58,63,59;,
  435.   3;61,64,62;,
  436.   3;63,65,59;,
  437.   3;64,61,66;,
  438.   3;65,68,59;,
  439.   3;65,67,68;,
  440.   3;60,74,61;,
  441.   3;60,69,74;,
  442.   3;61,74,75;,
  443.   3;61,70,66;,
  444.   3;67,72,68;,
  445.   3;67,71,72;,
  446.   3;69,73,74;,
  447.   3;75,76,61;,
  448.   3;61,76,77;,
  449.   3;61,78,70;,
  450.   3;61,77,78;;
  451.  }
  452.  MeshTextureCoords {
  453.   69;
  454.   -0.219317;2.621605;,
  455.   -0.219317;2.503997;,
  456.   -0.219317;2.386390;,
  457.   -0.219317;2.268782;,
  458.   -0.219317;2.151175;,
  459.   -0.219317;2.033567;,
  460.   -0.219317;1.915959;,
  461.   -0.351625;2.621605;,
  462.   -0.616242;2.621605;,
  463.   -0.748551;2.621605;,
  464.   -0.880860;2.621605;,
  465.   -1.013168;2.621605;,
  466.   -1.013168;2.151175;,
  467.   -1.013168;1.915959;,
  468.   -1.145477;2.621605;,
  469.   -1.145477;2.033567;,
  470.   -1.145477;1.915959;,
  471.   -1.277785;2.621605;,
  472.   -1.277785;1.915959;,
  473.   -1.542402;2.621605;,
  474.   -1.674711;2.621605;,
  475.   -1.807019;2.621605;,
  476.   -1.807019;2.033567;,
  477.   -1.807019;1.915959;,
  478.   -1.939328;2.621605;,
  479.   -1.939328;2.386390;,
  480.   -1.939328;2.268782;,
  481.   -1.939328;2.151175;,
  482.   -1.939328;2.033567;,
  483.   -1.939328;1.915959;,
  484.   1.219316;-3.738542;,
  485.   1.219316;-3.620934;,
  486.   1.219316;-3.503326;,
  487.   1.219316;-3.385719;,
  488.   1.219316;-3.150504;,
  489.   1.219316;-3.032896;,
  490.   1.351625;-3.738542;,
  491.   1.351625;-3.032896;,
  492.   1.483933;-3.738542;,
  493.   1.483933;-3.620934;,
  494.   1.483933;-3.032896;,
  495.   1.616242;-3.738542;,
  496.   1.748551;-3.738542;,
  497.   1.748551;-3.032896;,
  498.   1.880859;-3.738542;,
  499.   1.880859;-3.620934;,
  500.   1.880859;-3.032896;,
  501.   2.013168;-3.738542;,
  502.   2.013168;-3.032896;,
  503.   2.145476;-3.738542;,
  504.   2.145476;-3.032896;,
  505.   2.277785;-3.738542;,
  506.   2.277785;-3.620934;,
  507.   2.277785;-3.503326;,
  508.   2.277785;-3.032896;,
  509.   2.542402;-3.738542;,
  510.   2.542402;-3.032897;,
  511.   2.674711;-3.738542;,
  512.   2.674711;-3.032897;,
  513.   2.807019;-3.738542;,
  514.   2.807019;-3.620934;,
  515.   2.807019;-3.032897;,
  516.   2.939328;-3.738542;,
  517.   2.939328;-3.620934;,
  518.   2.939328;-3.503327;,
  519.   2.939328;-3.385719;,
  520.   2.939328;-3.268112;,
  521.   2.939328;-3.150504;,
  522.   2.939328;-3.032897;;
  523.  }
  524. }
  525.